home *** CD-ROM | disk | FTP | other *** search
- tellTarget("sec_mc")
- {
- gotoAndStop(length(String(eval("../:sec"))));
- }
- str = String(sec);
- j = 0;
- k = length(str);
- while(k > 0)
- {
- tellTarget("sec_mc/n" add j)
- {
- gotoAndStop(Number(mbsubstring(eval("../../:str"),eval("../../:k"),1)) + 1);
- }
- j++;
- k--;
- }
- tellTarget("min_mc")
- {
- gotoAndStop(length(String(eval("../:min"))));
- }
- str = String(min);
- j = 0;
- k = length(str);
- while(k > 0)
- {
- tellTarget("min_mc/n" add j)
- {
- gotoAndStop(Number(mbsubstring(eval("../../:str"),eval("../../:k"),1)) + 1);
- }
- j++;
- k--;
- }
- tellTarget("hour_mc")
- {
- gotoAndStop(length(String(eval("../:hour"))));
- }
- str = String(hour);
- j = 0;
- k = length(str);
- while(k > 0)
- {
- tellTarget("hour_mc/n" add j)
- {
- gotoAndStop(Number(mbsubstring(eval("../../:str"),eval("../../:k"),1)) + 1);
- }
- j++;
- k--;
- }
-